result = (List) obj;
}
catch (ClassCastException e) {
throwCce(e);
}
if ((obj instanceof KMappedMarker) && !(obj instanceof KMutableList)) {
throwCce(obj, "kotlin.MutableList");
return (List) obj;
}
catch (ClassCastException e) {
throw throwCce(e);
}
}